Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / CellMatrix<T> Class / InsertColumns Method
Column index of column after which to add columns
Number of columns to add


In This Topic
    InsertColumns Method (CellMatrix<T>)
    In This Topic
    Adds columns of cells after the specified column.
    Syntax
    'Declaration
     
    
    Public Overridable Sub InsertColumns( _
       ByVal column As Integer, _
       ByVal columnCount As Integer _
    ) 
    'Usage
     
    
    Dim instance As CellMatrix(Of T)
    Dim column As Integer
    Dim columnCount As Integer
     
    instance.InsertColumns(column, columnCount)
    public virtual void InsertColumns( 
       int column,
       int columnCount
    )

    Parameters

    column
    Column index of column after which to add columns
    columnCount
    Number of columns to add
    See Also